/* =============== VARIABLES ===============  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --clr-primary-400: #D4FD07;
  --clr-primary-500: #77B938;
  --clr-secondary-400: #FF0C67;
  --clr-info-400: #64D7D1;
  --clr-neutral-100: #ffffff;
  --clr-neutral-200: #E0E0E0;
  --clr-neutral-300: #E4E4E4;
  --clr-neutral-400: #CECECE;
  --clr-neutral-500: #D2D2D2;
  --clr-neutral-550: #bebebe;
  --clr-neutral-600: #707070;
  --clr-neutral-700: #404040;
  --clr-neutral-800: #0D1116;
  --clr-neutral-900: #0F1116;
  --clr-neutral-950: #000000;
  --bg-gd-primary-400: linear-gradient(90deg, #A00021 0%, #CC1221 47.92%, #CC3621 100%);
  --btn-primary-bg: var(--clr-primary-400);
  --btn-primary-txt: var(--clr-neutral-800);
  /* Font family */
  --ff-primary: "ITC Avant Garde Gothic LT";
  --ff-secondary: "Poppins", sans-serif;
  --ff-heading: var(--ff-primary);
  --fs-50: 1.1rem;
  --fs-100: 1.4rem;
  --fs-150: 1.6rem;
  --fs-200: 1.8rem;
  --fs-250: 2.5rem;
  --fs-300: 3rem;
  --fs-350: 4rem;
  --fs-400: 5rem;
  --fs-450: 6rem;
  --fs-500: 7rem;
  --fs-600: 8rem;
  --fs-700: 11rem;
  --fs-800: 14rem;
  --fs-900: 30.8rem;
  --radius-100: 1.6rem;
  --radius-200: 2rem;
  --radius-300: 2.4rem;
  --radius-400: 2.7rem;
  --radius-500: 3rem;
  --radius-600: 3.8rem;
  --bigger-heading: clamp(var(--fs-350), 6vw, var(--fs-600));
  --secondary-heading: clamp(var(--fs-250), 6vw, var(--fs-450));
  --sub-heading: clamp(var(--fs-250), 5vw, var(--fs-400));
  --tertari-heading: clamp(var(--fs-150), 6vw, var(--fs-200));
  --shadow-400: 0px 0px 100px rgba(0, 0, 0, 0.25);
  --bf-400: blur(30px);
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
    /* Moves the image 500px to the right */
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*reset font sizes of all tags*/
* {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

/* reset font size 1rem to 10px */
html {
  font-size: 62.5%;
}

body,
html {
  height: 100%;
}

/* remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* set core body defaults */
body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-style: normal;
}

.chosen__slider .swiper-wrapper { transform: translate3d(88px, 0px, 0px); }

/* a elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* avoid text overflows */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-size: inherit;
}

div, .header__toggle-btn, .offcanvas__close-btn { user-select: none; }

.d-lg-none { display: flex; }
.d-lg-none .header__nav { margin-left: 28px; }

.mybtn { white-space: nowrap; }
.signup { color: white; }
.inside { max-width: 420px; margin: auto; }
.signup input, .signup textarea { font-size: 20px; padding: 10px; border-radius: 5px; background-color: transparent; border: 1px solid #ffffff40; }
.signup input:focus, .signup textarea:focus { border-bottom: 5px solid #d4fd04; }
.txtGrp { margin: 10px 0px; min-height: 52px; }
#asteriskField { display:none; }
.mybtn--secondary { color: #ffffff !important; }
.member a { color: #d4fd04; }
.member { color: #ffffff }
.errorList { text-align: left; }
.member input, .member textarea { width: 100%; color: #ffffff !important; }

input:focus {
    outline: none;    
}

.country-link {
        background: none;
        border: none;
        color: #333;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px; /* Adds space between flag and text */
        font-family: inherit;
        padding: 5px 10px;
    }
    .country-link:hover {
        color: #0056b3;
    }
    .flag img {
        display: inline-block;
        vertical-align: middle;
    }
    .country-name {
        display: inline-block;
        vertical-align: middle;
    }

/* remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "ITC Avant Garde Gothic LT";
  src: url("../font/AvantGardeLT-Book.woff2") format("woff2"), url("../font/AvantGardeLT-Book.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Pro Bk";
  src: url("../font/ITCAvantGardePro-Demi.woff2") format("woff2"), url("../font/ITCAvantGardePro-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: var(--fs-150);
  font-weight: 400;
  font-family: var(--ff-secondary);
  color: var(--clr-neutral-800);
  background-color: var(--clr-neutral-300);
}

.bigger-heading {
  font-size: var(--bigger-heading);
  font-family: var(--ff-primary);
  font-weight: 600;
  line-height: clamp(4.5rem, 7vw, 9.6rem);
}

.secondary-heading {
  font-size: var(--secondary-heading);
  font-family: var(--ff-primary);
  font-weight: 500;
  line-height: clamp(3rem, 8vw, 7rem);
}

.sub-heading {
  font-size: var(--sub-heading);
  font-family: var(--ff-primary);
  font-weight: 500;
  line-height: clamp(3rem, 7vw, 5.5rem);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.text-neutral-200 {
  color: var(--clr-neutral-200);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.text-neutral-300 {
  color: var(--clr-neutral-300);
}

.bg-neutral-300 {
  background-color: var(--clr-neutral-300);
}

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.bg-neutral-400 {
  background-color: var(--clr-neutral-400);
}

.text-neutral-500 {
  color: var(--clr-neutral-500);
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500);
}

.text-neutral-550 {
  color: var(--clr-neutral-550);
}

.bg-neutral-550 {
  background-color: var(--clr-neutral-550);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.bg-neutral-600 {
  background-color: var(--clr-neutral-600);
}

.text-neutral-700 {
  color: var(--clr-neutral-700);
}

.bg-neutral-700 {
  background-color: var(--clr-neutral-700);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.bg-neutral-800 {
  background-color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.text-neutral-950 {
  color: var(--clr-neutral-950);
}

.bg-neutral-950 {
  background-color: var(--clr-neutral-950);
}

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-secondary-400 {
  color: var(--clr-secondary-400);
}

.text-info-400 {
  color: var(--clr-info-400);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-primary-500 {
  background-color: var(--clr-primary-500);
}

.bg-secondary-400 {
  background-color: var(--clr-secondary-400);
}

.bg-info-400 {
  background-color: var(--clr-info-400);
}

.section-gap {
  margin: var(--section-gap) 0;
}

.grid {
  display: grid;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.fs-50 {
  font-size: var(--fs-50);
}

@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: var(--fs-50);
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: var(--fs-50);
  }
}
.fs-100 {
  font-size: var(--fs-100);
}

@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: var(--fs-100);
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: var(--fs-100);
  }
}
.fs-150 {
  font-size: var(--fs-150);
}

@media (min-width: 1200px) {
  .fs-xl-150 {
    font-size: var(--fs-150);
  }
}
@media (min-width: 992px) {
  .fs-lg-150 {
    font-size: var(--fs-150);
  }
}
.fs-200 {
  font-size: var(--fs-200);
}

@media (min-width: 1200px) {
  .fs-xl-200 {
    font-size: var(--fs-200);
  }
}
@media (min-width: 992px) {
  .fs-lg-200 {
    font-size: var(--fs-200);
  }
}
.fs-250 {
  font-size: var(--fs-250);
}

@media (min-width: 1200px) {
  .fs-xl-250 {
    font-size: var(--fs-250);
  }
}
@media (min-width: 992px) {
  .fs-lg-250 {
    font-size: var(--fs-250);
  }
}
.fs-300 {
  font-size: var(--fs-300);
}

@media (min-width: 1200px) {
  .fs-xl-300 {
    font-size: var(--fs-300);
  }
}
@media (min-width: 992px) {
  .fs-lg-300 {
    font-size: var(--fs-300);
  }
}
.fs-350 {
  font-size: var(--fs-350);
}

@media (min-width: 1200px) {
  .fs-xl-350 {
    font-size: var(--fs-350);
  }
}
@media (min-width: 992px) {
  .fs-lg-350 {
    font-size: var(--fs-350);
  }
}
.fs-400 {
  font-size: var(--fs-400);
}

@media (min-width: 1200px) {
  .fs-xl-400 {
    font-size: var(--fs-400);
  }
}
@media (min-width: 992px) {
  .fs-lg-400 {
    font-size: var(--fs-400);
  }
}
.fs-450 {
  font-size: var(--fs-450);
}

@media (min-width: 1200px) {
  .fs-xl-450 {
    font-size: var(--fs-450);
  }
}
@media (min-width: 992px) {
  .fs-lg-450 {
    font-size: var(--fs-450);
  }
}
.fs-500 {
  font-size: var(--fs-500);
}

@media (min-width: 1200px) {
  .fs-xl-500 {
    font-size: var(--fs-500);
  }
}
@media (min-width: 992px) {
  .fs-lg-500 {
    font-size: var(--fs-500);
  }
}
.fs-600 {
  font-size: var(--fs-600);
}

@media (min-width: 1200px) {
  .fs-xl-600 {
    font-size: var(--fs-600);
  }
}
@media (min-width: 992px) {
  .fs-lg-600 {
    font-size: var(--fs-600);
  }
}
.fs-700 {
  font-size: var(--fs-700);
}

@media (min-width: 1200px) {
  .fs-xl-700 {
    font-size: var(--fs-700);
  }
}
@media (min-width: 992px) {
  .fs-lg-700 {
    font-size: var(--fs-700);
  }
}
.fs-800 {
  font-size: var(--fs-800);
}

@media (min-width: 1200px) {
  .fs-xl-800 {
    font-size: var(--fs-800);
  }
}
@media (min-width: 992px) {
  .fs-lg-800 {
    font-size: var(--fs-800);
  }
}
.fs-900 {
  font-size: var(--fs-900);
}

@media (min-width: 1200px) {
  .fs-xl-900 {
    font-size: var(--fs-900);
  }
}
@media (min-width: 992px) {
  .fs-lg-900 {
    font-size: var(--fs-900);
  }
}
.radius-100 {
  border-radius: var(--radius-100);
}

.radius-200 {
  border-radius: var(--radius-200);
}

.radius-300 {
  border-radius: var(--radius-300);
}

.radius-400 {
  border-radius: var(--radius-400);
}

.radius-500 {
  border-radius: var(--radius-500);
}

.bf-400 {
  -webkit-backdrop-filter: var(--bf-400);
          backdrop-filter: var(--bf-400);
}

@media (min-width: 768px) {
  .grid--md {
    display: grid;
  }
  .grid--md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid--lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid-xl {
    display: grid;
  }
  .grid--xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.mybtn {
  font-size: var(--fs-100);
  width: 18.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-800);
  border-radius: var(--radius-600);
  height: 4.1rem;
  border: 2px solid transparent;
  transition: all 0.3s;
  margin: auto;
}
.mybtn--primary {
  background-color: var(--clr-primary-400);
}
.mybtn--primary:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.mybtn--primary:hover span {
  transform: translateY(-4px);
}
.mybtn--secondary {
  background: var(--clr-secondary-400);
  color: var(--clr-neutral-100);
  font-weight: 700;
  font-size: var(--fs-100);
  width: 16.1rem;
  justify-content: flex-start;
  padding: 6px 1.8rem;
  border: 1px solid transparent;
}
.mybtn--secondary:hover {
  color: var(--clr-secondary-400);
  border-color: var(--clr-secondary-400);
  background: transparent;
}
.mybtn--white {
  background-color: var(--clr-neutral-100);
  color: var(--clr-neutral-800);
  margin: unset;
  border: 1px solid transparent;
  gap: 5px;
}
.mybtn--white span {
  display: none;
}
.mybtn--white:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.mybtn--white:hover span {
  display: inline-flex;
}
.mybtn--hover-dark:hover {
  color: var(--clr-neutral-100);
  border-color: var(--clr-neutral-100);
}
.mybtn span {
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .mybtn {
    font-size: var(--fs-200);
    width: 21.7rem;
    height: 5rem;
  }
  .mybtn--secondary {
    font-size: var(--fs-150);
    width: 17.6rem;
    padding: 7px 1.8rem;
    color: var(--clr-neutral-100);
  }
}
.content-box__head {
  overflow: hidden;
}
.content-box__desc {
  margin-top: 3rem;
  font-size: 24px;
  display: grid;
}
.content-box__btn {
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .content-box__desc {
    margin-top: 4rem;
  }
  .content-box__btn {
    margin-top: 4rem;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 2rem;
  overflow: hidden;
  padding-top: 17rem;
  /* Right move animation class */
}
.hero__img {
  position: absolute;
  top: 41%;
  width: 50%;
  min-height: 46rem;
  left: 62%;
  translate: -50% -50%;
  cursor: pointer;
  transition: transform 1s ease-in-out;
  width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .move-right {
  animation: moveRight 3s forwards ease-in-out;
}

@media (min-width: 1025px) {
  .hero {
    padding-top: 17rem;
  }
  .hero__img {
    top: 42%;
    width: 50%;
    min-height: 46rem;
    left: 60%;
    width: 580px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 20rem;
  }
  .hero__img {
    top: 20%;
    left: 51%;
    min-height: 100%;
    width: 280px;
  }
}
#progress-bar,
#progress-bar-2 {
  display: none;
  justify-content: center;
  align-items: center;
  height: 90px;
  opacity: 0;
}

#progress-bar.active,
#progress-bar-2.active {
  display: flex;
}

.odometer-circle {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG Circle Progress */
.circle-background {
  fill: none;
  stroke: #ddd;
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: var(--clr-secondary-400);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.percent {
  position: absolute;
  font-size: 40px;
  font-weight: bold;
  color: var(--clr-secondary-400);
  line-height: 1;
}

/* Customize the unchecked background color */
.custom-switch {
  background-color: var(--clr-neutral-100);
  /* Light gray for unchecked state */
  border-color: var(--clr-neutral-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.custom-switch:checked {
  background-color: var(--clr-neutral-800);
  border-color: var(--clr-neutral-800);
  box-shadow: none;
}

.custom-switch::before {
  background-color: #fff;
}

.custom-switch {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#store-progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.store-circle {
  position: relative;
  width: 211px;
  height: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-background {
  fill: none;
  stroke: #E5B3C1;
  stroke-width: 20px;
}

.store-progress {
  fill: none;
  stroke: var(--clr-secondary-400);
  stroke-width: 20px;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.5s ease;
}

.store-percent {
  position: absolute;
  font-size: 70px;
  /* Slightly larger for better visibility */
  font-weight: 500;
  color: var(--clr-secondary-400);
}

.store-percent:last-child {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-secondary-400);
  margin-top: 8rem;
}

@media (max-width: 768px) {
  .store-circle {
    width: 80px;
    /* Adjust for mobile */
    height: 80px;
  }
  .store-background,
  .store-progress {
    stroke-width: 15px;
    /* Thinner stroke for smaller size */
  }
  .store-percent {
    font-size: 2rem;
    /* Smaller text size */
  }
  .store-percent:last-child {
    font-size: 8px;
    /* Smaller secondary text */
    margin-top: 3rem;
  }
  #progress-bar,
  #progress-bar-2 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 50px;
    opacity: 0;
  }
  #progress-bar.active,
  #progress-bar-2.active {
    display: flex;
  }
  .odometer-circle {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .percent {
    position: absolute;
    font-size: 14px;
  }
}
.swiper-button-next,
.swiper-button-prev {
  position: unset;
  right: unset;
  margin: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  font-size: unset;
  font-family: unset;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next::after {
  background-image: url("../img/arrow-right.svg");
}

.swiper-button-prev::after {
  background-image: url("../img/arrow-right.svg");
  rotate: -180deg;
}

.swiper-pagination {
  position: unset;
  background: #CECECE;
  border-radius: 3rem;
  overflow: hidden;
  height: 5px !important;
}

.swiper-pagination-progressbar-fill {
  background: var(--clr-neutral-800) !important;
}

@media (max-width: 991px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 2rem;
    height: 2rem;
  }
}
.pricing .accordion {
  border: 0;
  background-color: transparent;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  --bs-accordion-btn-icon-transform: rotate(45deg);
}
.pricing .accordion .accordion-item {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.pricing .accordion .accordion-item .accordion-button {
  padding: 0;
  border: unset;
  box-shadow: unset;
  background: transparent;
  font-size: 1.2rem;
  color: #0D1116;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}
.pricing .accordion .accordion-item .accordion-button::after {
  left: 0;
  margin-left: 0;
  background-image: url("../img/pluse-white.svg");
  background-color: var(--clr-secondary-400);
  padding: 4px;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: 7px;
}
.pricing .accordion .accordion-item .accordion-body p {
  font-size: 1.2rem;
}

.footer {
  padding: 4.7rem 0 3rem;
  background: var(--clr-neutral-800);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.footer__link {
  color: #707070;
  font-size: var(--fs-100);
}
.footer__link:hover {
  color: var(--clr-neutral-100);
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  border: 2px solid var(--clr-primary-400);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social-link:hover {
  background-color: var(--clr-primary-400);
}
.footer__social-link:hover .footer__social-ic {
  filter: invert(100%);
  background-blend-mode: darken;
}
.footer__input {
  background: transparent !important;
  color: #707070 !important;
  border: 1px solid var(--clr-neutral-100) !important;
  padding: 1.7rem 2rem;
  border-radius: 2.4rem !important;
  font-size: 1.4rem;
  opacity: 9;
}
.footer__input::-moz-placeholder {
  color: #707070 !important;
}
.footer__input::placeholder {
  color: #707070 !important;
}
.footer__input:focus {
  outline: none !important;
  border: 1px solid var(--clr-primary-400) !important;
  box-shadow: none;
}
.footer__input-btn {
  background: var(--clr-primary-400) !important;
  border-radius: 2.4rem !important;
  height: 100%;
  border: 1px solid var(--clr-primary-400);
  box-shadow: none;
  width: 14rem;
  margin-top: 3rem;
  padding: 1.4rem 1rem;
}
.footer__cpy {
  margin-top: 5rem;
  padding: 4rem 0 0;
  border-top: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-neutral-100);
  align-items: start;
  font-size: 1.2rem;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
  justify-content: start;
}
.footer__logo {
  filter: invert(100%);
}

@media (min-width: 992px) {
  .footer {
    padding: 8.7rem 0 5rem;
    background: var(--clr-neutral-800);
  }
  .footer__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .footer__link {
    color: #707070;
    font-size: var(--fs-100);
  }
  .footer__link:hover {
    color: var(--clr-neutral-100);
  }
  .footer__input-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
  }
  .footer__cpy {
    margin-top: 5rem;
    padding: 4rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
  z-index: 999;
  /* */
  /* */
}
.header__logo {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__toggle-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 9;
}
.header__toggle-btn:hover .header__toggle-line--slider::before {
  transform: translateX(200%);
  width: 1rem;
}
.header__toggle-line {
  position: relative;
  width: 3rem;
  height: 4px;
  background-color: black;
  border-radius: 3rem;
}
.header__toggle-line--slider {
  overflow: hidden;
}
.header__toggle-line--slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  border-radius: 3rem;
  background-color: var(--clr-primary-400);
  transition: transform 0.3s ease-in-out;
}
.header__btn {
  font-size: 1.4rem;
  background-color: var(--clr-primary-400);
  color: var(--clr-neutral-800);
  width: 11rem;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.8rem;
  font-weight: 500;
  transition: all 0.3s;
  margin: auto;
  border: 2px solid transparent;
}
.header__btn:hover {
  background-color: transparent;
  border-color: var(--clr-neutral-800);
}
.header__btn:hover span {
  transform: translateY(-2px);
}
.header__btn span {
  transition: all 0.3s;
}
.header__menu {
  gap: 2.7rem;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:hover .header__nav-dropdown {
  visibility: visible;
  opacity: 9;
}
.header__nav-link {
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
  position: relative;
  display: inline-block;
}
.header__nav-link:hover {
  color: var(--clr-primary-500);
}
.header__nav-dropdown {
  position: absolute;
  top: 4rem;
  width: 190px;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  translate: -50% 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  background-color: var(--clr-neutral-100);
}
.header__social {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__social-link {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid var(--clr-neutral-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header__social-link:hover {
  background-color: var(--clr-primary-400);
  border-color: var(--clr-primary-400);
}

.offcanvas {
  border-radius: 2rem 0 0 2rem;
  width: 270px !important;
  z-index: 1000;
  border: 0 !important;
  /**/
}
.offcanvas-body {
  padding: 4.5rem 4.3rem 4rem;
  position: relative;
}
.offcanvas__close-btn {
  display: flex;
  justify-content: end;
  padding: 2.8rem 3.8rem 0;
  position: relative;
}
.offcanvas__close-btn:hover .offcanvas__close-ic {
  transform: rotate(180deg);
}
.offcanvas__close-ic {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: width 2s, height 2s, transform 0.3s;
}
.offcanvas__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}
.offcanvas__nav-list {
  display: flex;
  flex-direction: column;
}
.offcanvas__nav-item {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.offcanvas__nav-item:nth-child(1), .offcanvas__nav-item:nth-child(2), .offcanvas__nav-item:nth-child(3) {
  border-bottom: 1px solid var(--clr-neutral-600);
}
.offcanvas__nav-item .accordion__content {
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.offcanvas__nav-item .accordion__input {
  display: none;
}
.offcanvas__nav-item .accordion__input:checked + .offcanvas__nav-link + .accordion__content {
  max-height: 500px;
}
.offcanvas__nav-item .accordion__input:checked + .offcanvas__nav-link .accordion__toggle::after {
  content: "";
  rotate: 45deg;
}
.offcanvas__nav-item .accordion__toggle {
  margin-left: auto;
  flex-grow: 1;
  transition: all 0.3s;
}
.offcanvas__nav-item .accordion__toggle::after {
  content: "";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: transform 0.3s ease;
  background-image: url("../img/pluse.svg");
  background-size: contain;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
}
.offcanvas__nav-link {
  color: var(--clr-neutral-800);
  padding: 1.2rem 0;
  display: block;
  cursor: pointer;
}
.offcanvas__nav-link--btn {
  margin: 1.2rem 0;
}
.offcanvas__nav-link:hover {
  color: var(--clr-primary-500);
}
.offcanvas__nav-ic {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.offcanvas__inner-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.offcanvas__inner-link {
  color: var(--clr-neutral-800);
  display: block;
}
.offcanvas__inner-link:hover {
  color: var(--clr-primary-500);
}

@media (min-width: 992px) {
  .header {
    padding: 2.4rem 20px;
  }
  .header__logo {
    width: 2.6rem;
    height: 2.6rem;
  }
  .header__toggle-btn {
    display: flex;
    flex-direction: column;
  }
  .header__toggle-line {
    width: 3rem;
    height: 4px;
  }
  .header__menu {
    gap: 5rem;
  }
  .offcanvas {
    width: 330px !important;
  }
  .offcanvas-body {
    padding: 4.5rem 4.7rem 4rem;
  }
}
.container {
  width: min(113rem, 100% - 2.5rem) !important;
  margin-inline: auto;
  max-width: 100%;
}

.gym {
  padding: 6.6rem 0 5.2rem;
  background-image: url("../img/video-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-top: -1px;
}
.gym__box {
  border: 15px solid rgba(13, 17, 22, 0.2);
  border-radius: 4.5rem;
  position: relative;
  z-index: 9;
  filter: drop-shadow(0px 0px 94px rgba(0, 0, 0, 0.25));
}
.gym__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  background: #fff;
  z-index: -1;
  border-radius: 4.5rem;
}
.gym__box.shadow::before {
  content: "";
  height: 150%;
  width: 150%;
  position: absolute;
  background: #000000;
  opacity: 0.5;
  transition: all 0.4s;
  filter: blur(192px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  z-index: -1;
}
.gym__box-btn {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: var(--clr-neutral-800);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gym__box-ic {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.gym__video {
  width: 100%;
  height: 100%;
  border-radius: 2.7rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.member {
  background-color: var(--clr-neutral-800);
  padding: 4rem 0rem;
}
.member__offcanvas {
  z-index: 2000 !important;
  background-color: var(--clr-neutral-100) !important;
  width: 90% !important;
  margin: auto;
  border-radius: 3rem 3rem 0 0;
  height: 60vh !important;
  text-align: start;
  filter: drop-shadow(0px 0px 99px rgba(0, 0, 0, 0.271));
}
.member .offcanvas-header {
  padding: 0 !important;
}
.member .offcanvas-body {
  padding: 5.8rem 3rem !important;
  position: unset;
}
.member__header {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--clr-neutral-800);
}
.member__header-ic-box {
  width: 7.5rem;
  height: 7.5rem;
  background-color: var(--clr-primary-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.member__header-ic {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.member__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0 3.8rem;
}
.member__list-item {
  position: relative;
  padding-left: 4.2rem;
  font-size: var(--fs-50);
}
.member__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  background-image: url("../img/check-ic.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.week {
  padding: 6rem 0;
  background-color: var(--clr-neutral-800);
  position: relative;
  overflow: hidden;
}
.week::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}
.week__wrapper {
  border-radius: 2rem;
  background-color: var(--clr-neutral-100);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 999;
}
.week__wrapper table tr td {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 2rem;
  width: 300px;
  white-space: nowrap;
}
.week__wrapper table tr td:last-child {
  text-align: end;
}
.week__wrapper table .table-border {
  border-bottom: 1px solid #BEBEBE;
}
.week .week-item {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 11;
  display: flex;
  justify-content: center;
  width: 80%;
}
.week__img-box {
  flex-shrink: 0;
}
.week__img {
  width: 65%;
  margin: auto;
}
.week__days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.week__day {
  border: 1px solid #BEBEBE;
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  font-size: 8px;
  font-weight: bold;
  color: #BEBEBE;
  background: transparent;
  border-radius: 50%;
}
.week__day--btn {
  background-color: var(--clr-primary-400) !important;
  border-color: var(--clr-primary-400) !important;
}
.week__day-ic {
  width: 1.4rem;
  height: 1.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.week__table-head {
  font-size: var(--fs-100);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.week__table-date {
  font-size: var(--fs-50);
  color: #BEBEBE;
}
.week__divider {
  margin: 2rem 0;
}
.week__trainer-img {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--clr-primary-400);
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.week__book-btn {
  background: var(--clr-primary-400);
  border-radius: 3rem;
  border: 0;
  padding: 4px 1rem;
  width: 10.6rem;
  font-size: 1rem;
}
.week__badge {
  background-color: #AACCFF;
  padding: 5px 20px;
  font-size: 8px;
  font-weight: 600;
  color: #4F4F4F;
  border-radius: 3rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.week__profile {
  position: absolute;
  margin-top: auto;
  margin-bottom: 3rem;
  flex-shrink: 0;
  bottom: 0;
}
.week__profile-ic {
  border: 2px solid var(--clr-primary-400);
  border-radius: 50%;
  width: 4.4rem;
  height: 4.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  scale: 0;
  transition: all 0.5s ease-in-out;
}
.week__profile-ic.active {
  scale: 1;
}
.week__popup {
  position: absolute;
  top: -12rem;
  left: 3rem;
  padding: 1rem;
  transform: translate(-50%, -20%);
  background: var(--clr-neutral-100);
  border-radius: 1rem;
  z-index: 10;
  opacity: 0;
  box-shadow: var(--shadow-400);
  width: 14rem;
  transition: all 0.6s ease-in-out;
}
.week__popup.active {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.week__popup-arw {
  width: 18px;
  height: 18px;
  background-color: var(--clr-neutral-100);
  position: absolute;
  bottom: -1.2rem;
  left: 1.3rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.week__right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  right: 0;
  width: 42%;
  right: -30%;
}
.week__box-title {
  font-weight: 700;
  color: var(--clr-neutral-100);
  background: rgba(255, 255, 255, 0.4);
  padding: 5px 1.2rem;
  border-radius: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
}
.week__scale {
  transform: translateX(5%);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  margin-top: 2rem;
  scale: 0;
  display: flex;
  flex-direction: column;
}
.week__scale.active {
  transform: translateX(-4.3rem);
  scale: 1;
  opacity: 1;
}
.week__msg-box {
  width: auto;
  background-color: var(--clr-neutral-100);
  border-radius: 1.2rem;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-400);
}
.week__msg-box p {
  font-size: 1rem;
}
.week__title {
  background-color: var(--clr-primary-400);
  padding: 1rem 1.3rem 1rem;
  font-weight: 600;
  color: #0E1116;
}
.week__msg-item {
  padding: 1rem;
}
.week__msg-head {
  font-size: 7px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.week__msg-btn {
  padding: 5px 2rem;
  border-radius: 3rem;
  font-size: 7px;
  color: var(--clr-neutral-800);
  font-weight: 500;
  background-color: var(--clr-primary-400);
  margin-left: auto;
}

.product {
  background: var(--clr-neutral-800);
  padding: 1rem 0 12rem;
}
.product__slider {
  margin-top: 6rem;
  height: 310px;
}
.product__slider .swiper-slide-active .product__box::before {
  content: "";
  background: unset;
}
.product__box {
  background-color: var(--clr-neutral-100);
  position: relative;
  padding: 2rem 1rem 6rem;
  border: 1px solid #BEBEBE;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.product__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9;
}
.product__tools {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 2rem;
  width: 100%;
  gap: 5rem;
  background-color: var(--clr-neutral-300);
}
.product__tools-btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  gap: 3px;
  font-size: var(--fs-100);
}
.product__tools-ic {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta {
  padding: 8rem 0 14rem;
  background-color: var(--clr-primary-400);
}
.cta__img-box {
  overflow: hidden;
  margin-bottom: 2.6rem;
}
.cta__img {
  width: 4.6rem;
  height: 4.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__img--first {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.cta__img--two {
  animation: mover 1s infinite alternate;
}
.cta__sub-heading {
  font-size: 3rem;
  font-weight: 500;
}

.success {
  background: var(--clr-neutral-800);
  color: var(--clr-neutral-100);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.success__heading {
  font-size: var(--fs-500);
  font-weight: 400;
  position: relative;
  right: -400px;
  white-space: nowrap;
}
.success__wrapper {
  padding-top: 4rem;
}
.success__img {
  height: 35rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6rem;
  border: 1px solid #707070;
  width: 100%;
}
.success .swiper-slide {
  overflow: hidden;
  border-radius: 1.6rem;
}
.success .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.success .swiper-slide-active {
  opacity: 9 !important;
  transform: translate3d(0px, 0px, -0.325203px) rotateX(0deg) rotateY(0deg) scale(1);
}
.success .swiper-slide-active::before {
  background: unset;
}
.success .swiper-slide-active img {
  border: 0;
}

.techonology {
  position: relative;
  overflow: hidden;
  padding-bottom: 70rem;
}
.techonology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 22, 0.22);
}
.techonology__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  height: 70rem;
}
.techonology__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70rem;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.techonology__content {
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: auto;
  max-width: 120rem;
  margin: auto;
}
.techonology__heading {
  font-size: clamp(5rem, 8vw, 14rem);
  font-weight: 400;
  line-height: clamp(6rem, 8vw, 13rem);
  font-family: var(--ff-primary);
  font-weight: 600;
  position: relative;
}
.techonology__heading.heading-two {
  right: 0;
}
.techonology__box {
  padding: 3.5rem;
  position: absolute;
  bottom: 0;
  left: 2.8rem;
  right: 2.8rem;
  font-size: var(--fs-100);
  max-width: 32rem;
  color: var(--clr-neutral-100);
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.techonology__box p { font-size: 1.6em; }

.chosen {
  background-color: var(--clr-neutral-100);
  padding: 4.6rem 0;
  overflow: hidden;
}
.chosen__slider {
  padding: 6rem 0 0rem;
  margin-right: 0;
  width: 100%;
  margin-left: 0;
}
.chosen__img-box {
  border-radius: 2.6rem;
  overflow: hidden;
  position: relative;
}
.chosen__img {
  width: 100%;
  min-height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.chosen__ic-box {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.5rem;
  right: 1.2rem;
}
.chosen__ic {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.count {
  background-color: var(--clr-neutral-100);
  padding-bottom: 6.2rem;
}
.count__heading {
  font-size: clamp(10rem, 15vw, 30rem);
  font-family: var(--ff-primary);
  font-weight: 400;
}
.count__heading .digit {
  overflow: hidden;
  height: 1.1em;
}
.count__heading .digit span {
  display: flex;
  text-align: center;
  line-height: 1.1em;
}

.testimonial {
  background-color: var(--clr-neutral-800);
  overflow: hidden;
  position: relative;
}
.testimonial .content-box {
  padding: 7rem 0 9rem;
}
.testimonial__title {
  margin-bottom: 4rem;
}
.testimonial__list {
  position: relative;
  /* Positioning the box inside the section */
  top: unset;
  left: unset;
  width: 100%;
  flex-shrink: 0;
  gap: 2.6rem;
}
.testimonial__grid {
  height: auto;
  display: flex;
  padding-bottom: 9rem;
  float: left;
  width: 100%;
  margin: 0 -2rem;
}
.testimonial__box {
  background: rgba(255, 255, 255, 0.2);
  padding: 3.7rem 3rem;
  border-radius: 3rem;
  float: left;
  border: 1px solid rgba(112, 112, 112, 0.3);
  color: var(--clr-neutral-100);
  min-height: 34.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 29rem;
  flex: 0 0 auto;
}
.testimonial__box p {
  font-size: 1.2rem;
}
.testimonial__profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3rem;
}
.testimonial__profile img { max-width: 100px; }

.store {
  padding: 13rem 0 3rem;
  background-image: url("../img/bg-2.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}
.store .chart-container {
  max-width: 100%;
  display: block !important;
  opacity: 9 !important;
  visibility: visible !important;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}
.store__container {
  width: calc(50vw + 56.5rem);
  margin-left: auto;
  margin-right: 0;
}
.store__sales {
  background-color: var(--clr-neutral-100);
  padding: 2rem 1.8rem;
  border-radius: 2rem;
  transform: translateX(46%);
  margin-top: 8rem;
  margin-left: auto;
}
.store__rafer {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
}
.store__sales-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.store__sales-option {
  background: transparent;
  color: #ACACAC;
  font-weight: 600;
  border: 0;
  border-bottom: 2px solid #ACACAC;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../img/optio-arrow.svg") no-repeat right 0px center;
  background-size: 8px;
  padding-right: 1rem;
  font-size: 1rem;
}
.store__sales-list {
  margin-top: 1.7rem;
}
.store__sales-input {
  background-color: var(--clr-neutral-500);
  border: 0;
  box-shadow: none;
  width: 12rem;
  padding: 3px 5px;
  color: #404040;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/optio-arrow.svg");
  background-size: 10px;
  background-position: 95%;
  background-repeat: no-repeat;
  font-weight: 500;
  font-size: 1rem;
}
.store__sales-title {
  color: #ACACAC;
  margin-bottom: 5px;
  font-size: var(--fs-50);
}
.store__sales-datepicker {
  border: 1px solid #D2D2D2;
  font-size: 8px;
  padding: 3px 4px;
  font-weight: 500;
  color: #404040;
  width: 11rem;
}
.store__sales-datebx {
  position: relative;
}
.store__sales-datebx::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 51%;
  translate: 0 -50%;
  background-image: url("../img/arrow-dark-bottom.png");
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.store__chart-box {
  position: relative;
  margin-top: 3rem;
}
.store__box {
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: flex-start;
}
.store__services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.store__gift-card {
  background: var(--clr-neutral-100);
  padding: 2rem;
  border-radius: 1.6rem;
  display: flex;
  flex-shrink: 0;
  min-width: 29rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  position: relative;
  left: -100px;
  opacity: 0;
}
.store__gift-card .gift-heading {
  font-size: 26px;
  font-weight: 600;
}
.store__gift-card .gift-btn {
  background-color: var(--clr-primary-400);
  padding: 1px 1rem;
  font-size: var(--fs-50);
  border-radius: 3rem;
  box-shadow: none;
  border: 0;
  font-weight: 500;
  margin-top: 1rem;
}
.store__gift-ic {
  width: 7rem;
  height: 7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.store__services-box {
  background-color: var(--clr-neutral-100);
  padding: 1.2rem;
  border-radius: 8px;
  position: relative;
  width: 31rem;
}
.store__services-box p {
  color: #ACACAC;
  margin-top: 5px;
}
.store__services-head {
  font-size: 1.4rem;
}
.store__tools-btn {
  box-shadow: none;
  border: 0;
  background: transparent;
  font-size: 1rem;
  gap: 4px;
  display: flex;
  align-items: center;
}
.store__tools-ic {
  width: 1rem;
  height: 1rem;
}
.store__services-title {
  background: var(--clr-neutral-800);
  height: 3rem;
  width: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  color: var(--clr-neutral-100);
  padding: 5px 1rem;
  font-size: 1rem;
  font-weight: 500;
}
.store__services-title svg {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.store__services-title:first-child {
  margin-left: 4rem;
}
.store__services-title:last-child {
  margin-left: -2rem;
}
.store__services-title--lg {
  width: 14rem;
}
.store__alert {
  margin-left: -4.2rem;
  width: 100%;
}
.store__alert-list {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: start !important;
  gap: 1rem;
  margin-top: 1rem;
}
.store__alert-btn {
  background: var(--clr-info-400);
  color: #1E1E1E;
  border: 0;
  box-shadow: none;
  height: 2.2rem;
  min-width: 5rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 6px 3px 1.5rem;
  font-size: 8px;
  gap: 3px;
}
.store__product {
  margin-top: 0;
}
.store__product .mybtn {
  width: 10rem;
  font-size: 1rem;
  padding: 2px;
}
.store__product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.store__product-item h4,
.store__product-item p {
  color: #1E1E1E;
}
.store__product-img {
  width: 100%;
  min-height: 14rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.6rem;
}

.place {
  padding: 10rem 0 12rem;
  background-image: url("../img/video-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}
.place .container {
  position: relative;
  z-index: 9;
}
.place::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.place__slider {
  padding: 7rem 0 0;
  perspective: 1500px;
  /* Adjust based on your preference */
}
.place__slider .swiper-slide {
  overflow: unset;
}
.place__slider .swiper-slide-active .swiper-card {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.place__shape {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.place__shape--left {
  left: -23rem;
  width: 350px;
  bottom: 0rem;
}
.place__shape--right {
  right: -34rem;
  top: 40rem;
  width: 61rem;
}
.place__shape--bottom {
  right: -10rem;
  top: auto;
  width: 65%;
  bottom: -2rem;
  z-index: -1;
}
.place__shape--top {
  top: 43rem;
  right: 0rem;
  width: 18rem;
}
.place__box {
  background-color: var(--clr-neutral-100);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  margin: auto;
}
.place__img {
  width: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .gym {
    padding: 11rem 0 10rem;
  }
  .gym__box {
    border: 15px solid rgba(255, 255, 255, 0.3);
  }
  .gym__box::before {
    opacity: 0.35;
  }
  .member {
    padding: 16.8rem 0 8rem;
  }
  .member__offcanvas {
    width: 812px !important;
    border-radius: 3rem 3rem 0 0;
    height: 70vh !important;
  }
  .member__offcanvas .offcanvas-header {
    padding: 3rem !important;
  }
  .member__header {
    padding-bottom: 2rem;
  }
  .member__header-ic-box {
    position: unset;
    left: unset;
    top: unset;
    margin: unset;
  }
  .member__list {
    gap: 2.7rem;
    margin: 3.2rem 0;
  }
  .member__list-item {
    padding-left: 4.2rem;
    font-size: var(--fs-150);
  }
  .member__list-item::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .week {
    padding: 8rem 0 11rem;
    background-color: var(--clr-neutral-800);
    position: relative;
    overflow: hidden;
  }
  .week::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 9;
  }
  .week__sc-img {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .week__sc-img--left {
    left: -47rem;
    background-image: url("../img/week-count-img.png");
    opacity: 34%;
  }
  .week__sc-img--right {
    background-image: url("../img/week-count-img.png");
    width: 70rem;
    right: -34rem;
    height: 54rem;
    opacity: 43%;
  }
  .week__wrapper {
    border-radius: 3rem;
    background-color: var(--clr-neutral-100);
    padding: 5rem 3rem 2rem;
    position: relative;
  }
  .week__wrapper table tr td {
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 0;
    width: 300px;
    white-space: nowrap;
  }
  .week__wrapper table tr td:last-child {
    text-align: end;
  }
  .week__wrapper table .table-border {
    border-bottom: 1px solid #BEBEBE;
  }
  .week__img {
    width: 90%;
    margin: auto;
  }
  .week__days {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  .week__day {
    border: 1px solid #BEBEBE;
    width: 3.4rem;
    height: 3.4rem;
    -o-object-fit: contain;
       object-fit: contain;
    font-size: 1rem;
    font-weight: bold;
    color: #BEBEBE;
    background: transparent;
    border-radius: 50%;
  }
  .week__table-head {
    font-size: var(--fs-150);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }
  .week__table-date {
    font-size: var(--fs-50);
    color: #BEBEBE;
  }
  .week__divider {
    margin: 5rem 0;
  }
  .week__trainer-img {
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--clr-primary-400);
    border-radius: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .week__book-btn {
    background: var(--clr-primary-400);
    border-radius: 3rem;
    border: 0;
    padding: 4px 1rem;
    width: 10.6rem;
    font-size: 1rem;
  }
  .week__badge {
    background-color: #AACCFF;
    padding: 5px 20px;
    font-size: 8px;
    font-weight: 600;
    color: #4F4F4F;
    border-radius: 3rem;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .week__profile {
    position: relative;
    margin-top: auto;
    margin-bottom: 6rem;
    margin-right: 2rem;
  }
  .week__profile-date {
    color: #ACACAC;
  }
  .week__right {
    position: unset;
    justify-content: center;
    translate: unset;
    width: 70%;
  }
  .week__profile-ic {
    border: 3px solid var(--clr-primary-400);
    width: 6.4rem;
    height: 6.4rem;
  }
  .week__popup {
    top: -12rem;
    left: 8rem;
    padding: 1.4rem 1.7rem;
    transform: translate(-50%, -20%);
    width: 17rem;
  }
  .week__popup-arw {
    width: 23px;
    height: 23px;
    bottom: -2.2rem;
    left: 2.3rem;
  }
  .week__box-title {
    padding: 9px 2.2rem;
    border-radius: 3rem;
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }
  .week__scale {
    transform: translateX(10%);
    margin-top: 2.3rem;
  }
  .week__scale.active {
    transform: translateX(-4.3rem);
  }
  .week__msg-box {
    width: 28.6rem;
    border-radius: 1.6rem;
  }
  .week__title {
    padding: 1.8rem 2.3rem 1rem;
  }
  .week__msg-item {
    padding: 2rem;
  }
  .week__msg-head {
    font-size: var(--fs-200);
    margin-bottom: 1.6rem;
  }
  .week__msg-btn {
    padding: 7px 2rem;
    border-radius: 3rem;
    font-size: var(--fs-50);
  }
  .product {
    padding: 1rem 0 10rem;
  }
  .product__slider {
    margin-top: 12rem;
    height: 345px;
  }
  .product__box {
    padding: 2rem 2rem 6rem;
  }
  .product__tools {
    padding: 0 2rem;
    gap: 10rem;
  }
  .product__tools-btn {
    padding: 5px 0;
    gap: 3px;
  }
  .product__tools-ic {
    width: 2rem;
    height: 2rem;
  }
  .cta {
    padding: 18rem 0;
  }
  .cta__img-box {
    overflow: hidden;
    margin-bottom: 2.6rem;
  }
  .cta__img {
    width: 5rem;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .cta__sub-heading {
    font-size: 3rem;
    font-weight: 500;
  }
  .success {
    padding: 1rem 0 8.7rem;
  }
  .success__heading {
    font-size: var(--fs-800);
    right: -500px;
  }
  .success__wrapper {
    padding-top: 6rem;
  }
  .success__img {
    min-height: 43rem;
    border-radius: 1.6rem;
  }
  .success .swiper-slide {
    border-radius: 1.6rem;
  }
  .success .swiper-slide-active::before {
    background: unset;
  }
  .success .swiper-slide-active img {
    border: 0;
  }
  .techonology {
    padding-bottom: 96rem;
  }
  .techonology__img {
    height: 96rem;
  }
  .techonology__shape {
    height: 96rem;
  }
  .techonology__content {
    top: 7.5rem;
  }
  .techonology__heading.heading-two {
    right: -50px;
  }
  .techonology__box {
    padding: 7rem;
    left: 7.2rem;
    max-width: 51rem;
    min-height: 41rem;
    gap: 4rem;
  }
  .chosen {
    padding: 13.4rem 0;
  }
  .chosen__slider {
    padding: 11rem 0 3rem;
    padding-bottom: 10rem;
  }
  .chosen__slider .swiper-slide {
    width: 440px !important;
  }
  .chosen__img-box {
    border-radius: 2.6rem;
  }
  .chosen__img {
    width: 100%;
    min-height: 23rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .chosen__ic-box {
    width: 5.9rem;
    height: 5.9rem;
    bottom: 2.5rem;
    right: 2rem;
  }
  .chosen__ic {
    width: 3rem;
    height: 3rem;
  }
  .testimonial .content-box {
    padding: 10rem 0;
  }
  .testimonial__title {
    margin-bottom: 6rem;
  }
  .testimonial__list {
    top: -16%;
    left: 0;
  }
  .testimonial__grid {
    height: 1066px;
    display: grid;
    margin: 0;
    padding-bottom: 0;
  }
  .testimonial__box {
    padding: 5rem 2.5rem 2rem;
    color: var(--clr-neutral-100);
    min-height: 34.4rem;
    gap: 4rem;
    width: 100%;
  }
  .testimonial__box p {
    font-size: 1.6rem;
  }
  .place {
    padding: 10rem 0 30rem;
    background-image: url("../img/video-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
  }
  .place .container {
    position: relative;
    z-index: 9;
  }
  .place::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .place__slider {
    padding: 12rem 0 0;
    perspective: 1500px;
    /* Adjust based on your preference */
  }
  .place__slider .swiper-slide {
    overflow: unset;
  }
  .place__slider .swiper-slide-active .swiper-card {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  }
  .place__shape {
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .place__shape--left {
    left: -53rem;
    width: 769px;
    bottom: 12rem;
  }
  .place__shape--right {
    right: -34rem;
    top: 40rem;
    width: 61rem;
  }
  .place__shape--bottom {
    right: -10rem;
    top: auto;
    width: 65%;
    bottom: -20rem;
    z-index: -1;
  }
  .place__shape--top {
    top: 43rem;
    right: 34rem;
    width: 40rem;
  }
  .place__box {
    background-color: var(--clr-neutral-100);
    border-radius: 2rem;
    overflow: hidden;
    padding: 2rem;
    width: 80%;
    margin: auto;
  }
  .place__img {
    width: 100%;
    margin: auto;
    border-radius: 2rem;
  }
  .store {
    padding: 40rem 0 3rem;
  }
  .store__sales {
    padding: 4rem 4.8rem;
    transform: translateX(9rem);
  }
  .store__rafer {
    left: -23rem;
  }
  .store__sales-heading {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
  .store__sales-option {
    padding-right: 1rem;
    font-size: 1.4rem;
  }
  .store__sales-datepicker {
    font-size: 14px;
    padding: 5px 6px;
    width: 11rem;
  }
  .store__sales-input {
    width: 20rem;
    padding: 6px 5px;
    font-size: 1.4rem;
  }
  .store__sales-title {
    margin-bottom: 7px;
    font-size: var(--fs-100);
  }
  .store__chart-box {
    margin-top: 4rem;
  }
  .store__box {
    gap: 2rem;
    margin-top: 4rem;
    align-items: flex-start;
    margin-right: -8rem;
  }
  .store__services {
    gap: 3.3rem;
  }
  .store__services-head {
    font-size: 2rem;
    font-weight: 500;
  }
  .store__services-box {
    padding: 2.2rem;
    width: 31rem;
  }
  .store__services-title {
    height: 5rem;
    width: 23rem;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .store__services-title:first-child {
    margin-left: 0px;
  }
  .store__services-title:last-child {
    margin-left: 0px;
  }
  .store__services-title--lg {
    width: 27rem;
  }
  .store__services-title svg {
    width: auto;
    height: auto;
  }
  .store__alert-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
  }
  .store__alert-btn {
    height: 3.3rem;
    min-width: 11rem;
    padding: 4px 8px 4px 1.5rem;
    font-size: 1.2rem;
    gap: 6px;
  }
  .store__product {
    margin-top: 0;
  }
  .store__product .mybtn {
    width: 15rem;
    font-size: var(--fs-100);
    padding: 5px 1rem !important;
  }
  .store__product-img {
    width: 25rem;
    min-height: 33rem;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 767px) {
  .success {
    background: var(--clr-neutral-800);
    color: var(--clr-neutral-100);
    padding: 5rem 0 4rem;
    overflow: hidden;
  }
  .success__heading {
    font-size: var(--fs-500);
    font-weight: 400;
    position: relative;
    right: -400px;
    white-space: nowrap;
  }
  .success__wrapper {
    padding-top: 4rem;
  }
  .success__img {
    height: 24rem;
  }
  .techonology .container {
    position: relative;
  }
  .techonology__img {
    -o-object-position: 65%;
       object-position: 65%;
  }
  .techonology__shape {
    -o-object-position: 65%;
       object-position: 65%;
  }
  .techonology__heading.heading-two {
    right: 3rem;
  }
  .store__container {
    width: 100% !important;
    margin: unset;
  }
  .store__chart-box {
    margin-top: 1.6rem;
  }
  .store #canvasJSChart {
    height: 160px !important;
  }
}
@media (max-width: 1024px) {
  .store__container {
    padding-left: 2rem;
    width: 100%;
  }
}
@media (min-width: 1441px) {
  .techonology__heading.heading-two {
    right: -100px;
  }
}
@media (max-width: 480px) {
  .product__slider {
    height: 250px;
    padding: 0;
  }
  .product__slider p {
    font-size: 1rem;
  }
  .product__box {
    padding: 1rem 1rem 4rem;
  }
  .product__tools {
    padding: 0 2rem;
    gap: 2rem;
  }
  .product__tools-btn {
    padding: 3px 0;
    gap: 2px;
    font-size: 1rem;
  }
  .product__tools-ic {
    width: 1.5rem;
    height: 1.5rem;
  }
  .week__img {
    width: 46%;
    margin-left: 5rem;
  }
  .week__right {
    padding: 4px 7px;
    justify-content: center;
    height: 100%;
    right: -40%;
    width: 50%;
  }
  .week__box-title {
    font-size: 6px;
  }
  .week__profile-ic {
    width: 2rem;
    height: 2rem;
  }
  .week__title {
    font-size: 7px;
    padding: 4px 5px;
    border-radius: 5px;
  }
  .week__msg-item {
    padding: 6px;
  }
  .week__msg-item p {
    font-size: 6px;
  }
  .week__msg-item span {
    font-size: 5px;
  }
  .week__msg-btn {
    padding: 3px 1rem;
    font-size: 5px;
  }
  .week__popup {
    padding: 8px;
    width: 9rem;
    top: -6rem;
  }
  .week__popup p {
    font-size: 7px;
    margin: 0;
  }
  .week__popup h4 {
    font-size: 1rem;
  }
  .week__popup span {
    font-size: 7px;
  }
}
.pricing {
  padding-top: 7rem;
  /* btn */
  /* Show Yearly Prices When Yearly is Checked */
  /* Hide Yearly Prices by Default */
}
.pricing__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing__toggle {
  position: relative;
  display: flex;
  justify-content: center;
  background: var(--clr-primary-400);
  border-radius: 30px;
  padding: 8px 10px;
}
.pricing__toggle::before {
  content: "";
  position: absolute;
  width: 9.8rem;
  height: 3.2rem;
  background: var(--clr-neutral-100);
  border-radius: 25px;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: 1;
}
.pricing__toggle-btn {
  flex: 1;
  text-align: center;
  padding: 8px 22px;
  border-radius: 3rem;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.8rem;
}
.pricing #yearly:checked ~ .pricing__toggle::before {
  transform: translateX(100%);
}
.pricing #yearly:checked ~ .pricing-container .pricing__plan .price-yearly {
  display: block;
}
.pricing #yearly:checked ~ .pricing-container .pricing__plan .price-monthly {
  display: none;
}
.pricing .price-yearly {
  display: none;
}
.pricing__grid {
  width: 100%;
  gap: 2rem;
  margin-top: 5rem;
}
.pricing__box {
  width: 100%;
}
.pricing__box:nth-child(2) {
  grid-column: span 2;
}
.pricing__inner-box {
  border: 1px solid var(--clr-neutral-600);
  padding: 1.4rem 1.9rem;
  border-radius: 2rem;
  display: flex;
  gap: 1.3rem;
  min-height: 13.1rem;
}
.pricing__inner-ic-box {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--clr-neutral-800);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.pricing__inner-ic {
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.pricing__plan {
  background-color: var(--clr-neutral-100);
  border-radius: 2rem;
  padding: 2.5rem 2.2rem 1.4rem;
  margin-top: 1.1rem;
}
.pricing__badge {
  background-color: var(--clr-info-400);
  border-radius: var(--radius-100);
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
}
.pricing__plan-heading {
  font-size: var(--fs-300);
  font-weight: 500;
  font-family: var(--ff-secondary);
  line-height: 2.4rem;
  margin: 1.3rem 0 2.5rem;
  line-height: 2.4rem;
}
.pricing__features li {
  font-size: var(--fs-100);
  color: var(--clr-neutral-800);
}
.pricing__plan-grid {
  gap: 1.7rem;
}

.pricing-gallary {
  margin: 8rem 0;
}
.pricing-gallary .swiper {
  padding: 3.5rem 0;
}
.pricing-gallary .swiper-slide {
  border-radius: var(--radius-100);
  overflow: hidden;
  transition: transform 0.5s ease-in-out !important;
}
.pricing-gallary .swiper-slide-active {
  transform: scale(1.11) !important;
}
.pricing-gallary__img {
  border-radius: var(--radius-100);
  min-height: 38rem;
  width: 36rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .pricing__wrapper {
    margin: 5rem 0;
  }
  .pricing__box:nth-child(1) {
    grid-column: span 2;
  }
  .pricing__grid {
    margin-top: 3.5rem;
    gap: 1.1rem;
  }
  .pricing__plan-grid {
    gap: 1.1rem;
  }
  .pricing__plan {
    padding: 1.7rem 2.8rem;
  }
  .pricing__plan:last-child {
    margin: 0;
  }
  .pricing-gallary {
    margin: 8rem 0;
  }
  .pricing-gallary .swiper {
    padding: 1rem 0;
  }
  .pricing-gallary .swiper-slide-active {
    scale: 1.1;
  }
  .pricing-gallary__img {
    min-height: 19rem;
  }
}/*# sourceMappingURL=main.css.map */


/* =========================================
   Generic Page Hero (shared by all sections)
   ========================================= */

.page-hero {
  position: relative;
  background-color: #050608; 
  color: var(--clr-neutral-100);
}

/* Container "holder" – width capped by .container */
.page-hero__inner {
  position: relative;
  padding: 9.5rem 0 8.5rem;
  min-height: 52rem;
  overflow: hidden;

  /* per-page custom properties */
  --hero-bg-position: center right;
}

/* BACKGROUND IMAGE – inside container width */
.page-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: var(--hero-bg-position);
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark left blend + subtle highlight (shared) */
.page-hero__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 40%, rgba(0, 0, 0, 0.95) 0, rgba(0, 0, 0, 0.75) 40%, transparent 70%),
    radial-gradient(circle at 70% 0%, rgba(11, 11, 10, 0.09), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ==============================
   Typography & layout
   ============================== */

.page-hero__content {
  position: relative;
  z-index: 2;            
  max-width: 52rem;
  text-align: left;
  animation: hero-fade-up 0.9s ease-out 0.12s both;
}

.page-hero__eyebrow {
  font-size: var(--fs-100);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-neutral-400);
  margin-bottom: 1.6rem;
}

.page-hero__heading {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: clamp(3.8rem, 5.6vw, 5.8rem);
  line-height: 1.05;
  margin-bottom: 2.4rem;
}

.page-hero__subheading {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin-bottom: 2.4rem;
}

.page-hero__subheading span {
  color: var(--clr-primary-400);
}

.page-hero__body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--clr-neutral-200);
  margin-bottom: 1.6rem;
}

.page-hero__cta {
  margin-top: 3rem;
  justify-content: center;
  animation: hero-cta-pop 0.65s ease-out 0.7s both;
}

/* ==============================
   Animations (shared)
   ============================== */

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cta-pop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ==============================
   Responsive tweaks (shared)
   ============================== */

@media (max-width: 991px) {
  .page-hero__inner {
    padding: 8.5rem 0 7rem;
    min-height: 0;
  }

  .page-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .page-hero__inner {
    padding: 8rem 0 5.5rem;
  }

  .page-hero__heading {
    font-size: 3.1rem;
  }

  .page-hero__subheading {
    font-size: 1.9rem;
  }

  .page-hero__body {
    font-size: 1.5rem;
  }

  .page-hero__cta {
    width: 100%;
  }
}

/* =========================================
   Light version of page hero (white theme)
   ========================================= */

.page-hero--light {
  background-color: #f5f6f8;          
  color: #141414;                      
}

.page-hero--light .page-hero__inner::after {

  background:
    linear-gradient(
      90deg,
      rgba(245, 246, 248, 1) 0%,
      rgba(245, 246, 248, 0.96) 18%,
      rgba(245, 246, 248, 0.85) 35%,
      rgba(245, 246, 248, 0.55) 55%,
      rgba(245, 246, 248, 0) 75%
    );
}

.page-hero--light .page-hero__eyebrow {
  color: #6a6f7a;
}

.page-hero--light .page-hero__body {
  color: #3c4045;
}

.page-hero--light .page-hero__subheading span {
  color: var(--clr-secondary-400);
}

/* Gyms & Health Clubs */
.page-hero--gym .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs  GB*/
.page-hero--gym-gb .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-gb.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs EU*/
.page-hero--gym-eu .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-eu.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs au*/
.page-hero--gym-au .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-au.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs ca*/
.page-hero--gym-ca .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-ca.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs in*/
.page-hero--gym-in .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-in.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs ph*/
.page-hero--gym-ph .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-ph.webp");
  --hero-bg-position: center right;
}

/* Gyms & Health Clubs sa*/
.page-hero--gym-sa .page-hero__inner {
  --hero-bg-image: url("../img/gym-hero-sa.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--gym .page-hero__inner::before {
    background-position: 65% center; /* keep faces visible on narrow screens */
  }
}

/* Personal Trainers */
.page-hero--pt .page-hero__inner {
  --hero-bg-image: url("../img/pt-hero-extra-optimized.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--pt .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Martial Arts */
.page-hero--ma .page-hero__inner {
  --hero-bg-image: url("../img/martial-arts-hero-optimized.webp");
  --hero-bg-position: 60% center; 
}

@media (max-width: 575px) {
  .page-hero--ma .page-hero__inner::before {
    background-position: 65% center;
  }
}


/* Pilates & Yoga */
  
.page-hero--pilates .page-hero__inner {
  --hero-bg-image: url("../img/hero-pilates-yoga-blended.webp");
  --hero-bg-position: 60% center;
}

@media (max-width: 575px) {
  .page-hero--pilates .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Gymnastics */
.page-hero--gymnastics .page-hero__inner {
  --hero-bg-image: url("../img/hero-gymnastics-blended.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--gymnastics .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Dance – dramatic */
.page-hero--dance .page-hero__inner {
  --hero-bg-image: url("../img/hero-dance-blended.webp");
  --hero-bg-position: 60% center;
}

@media (max-width: 575px) {
  .page-hero--dance .page-hero__inner::before {
    background-position: 65% center;
  }
}

/* Racquet Clubs */
.page-hero--racquet .page-hero__inner {
  --hero-bg-image: url("../img/hero-racquet-blended.webp");
  --hero-bg-position: center right;
}

@media (max-width: 575px) {
  .page-hero--racquet .page-hero__inner::before {
    background-position: 65% center;
  }
}
